home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmCustomers
- BorderStyle = 1 'Fixed Single
- Caption = "Customers Database"
- ClientHeight = 3195
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 5400
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 3195
- ScaleWidth = 5400
- StartUpPosition = 3 'Windows Default
- Begin VB.Data datCustomers
- Caption = "Customers"
- Connect = "Access"
- DatabaseName = "c:\VBDB\Working\Nwind.mdb"
- DefaultCursorType= 0 'DefaultCursor
- DefaultType = 2 'UseODBC
- Exclusive = 0 'False
- Height = 300
- Left = 1200
- Options = 0
- ReadOnly = -1 'True
- RecordsetType = 1 'Dynaset
- RecordSource = "Customers"
- Top = 2640
- Width = 3060
- End
- Begin VB.TextBox txtContactTitle
- DataField = "ContactTitle"
- DataSource = "datCustomers"
- Height = 495
- Left = 1440
- Locked = -1 'True
- TabIndex = 5
- Top = 1920
- Width = 3615
- End
- Begin VB.TextBox txtContactName
- DataField = "ContactName"
- DataSource = "datCustomers"
- Height = 495
- Left = 1440
- Locked = -1 'True
- TabIndex = 4
- Top = 1320
- Width = 3615
- End
- Begin VB.TextBox txtCompanyName
- DataField = "CompanyName"
- DataSource = "datCustomers"
- Height = 495
- Left = 1440
- Locked = -1 'True
- TabIndex = 3
- Top = 720
- Width = 3615
- End
- Begin VB.TextBox txtCustomerID
- DataField = "CustomerID"
- DataSource = "datCustomers"
- Height = 495
- Left = 1440
- Locked = -1 'True
- TabIndex = 1
- Top = 120
- Width = 3615
- End
- Begin VB.Label Label4
- Caption = "Contact Title"
- Height = 495
- Left = 120
- TabIndex = 7
- Top = 2040
- Width = 1215
- End
- Begin VB.Label Label3
- Caption = "Contact Name"
- Height = 495
- Left = 120
- TabIndex = 6
- Top = 1440
- Width = 1215
- End
- Begin VB.Label Label2
- Caption = "Company Name"
- Height = 495
- Left = 120
- TabIndex = 2
- Top = 840
- Width = 1215
- End
- Begin VB.Label Label1
- Caption = "Customer ID"
- Height = 495
- Left = 120
- TabIndex = 0
- Top = 240
- Width = 1215
- End
- Attribute VB_Name = "frmCustomers"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
-